

.popup .overlay {
    position: fixed;
    top: 0px; 
    left: 0px;

    width: 100vw; 
    height: 100vh;
    background: rgba(0,0, 0, 0.7); 
    z-index:600;
display: none;
    }
.popup .content {
    positIon: fixed;
    top: 50%;
    left: 50%;
    scale: 0;
    transform: translate(-50%, -50%);
    background:#fff;
    max-width:450px;
    width: 80%;
    height: 380px;
    z-index:650;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 40px;
}

.popup .close-btn {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    background: #222;
    color:#fff;
    font-size: 25px;
    font-weight: 600;
    line-height: 30px; 
    text-align: center; 
    border-radius: 50%;
}
.popup.active .overlay { 
    display:block;
}
.popup.active .content {
transition:all 300ms ease-in-out;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
scale: 1;

}
.popup1 .overlay {
    position: fixed;
    top: 0px; 
    left: 0px;

    width: 100vw; 
    height: 100vh;
    background: rgba(0,0, 0, 0.7); 
    z-index:600;
display: none;
    }
.popup1 .content {
    positIon: fixed;
    top: 50%;
    left: 50%;
    scale: 0;
    transform: translate(-50%, -50%);
    background:#fff;
    max-width:450px;
    width: 80%;
    height: 250px;
    z-index:650;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 40px;
}

.popup1 .close-btn {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    background: #222;
    color:#fff;
    font-size: 25px;
    font-weight: 600;
    line-height: 30px; 
    text-align: center; 
    border-radius: 50%;
}
.popup1.active .overlay { 
    display:block;
}
.popup1.active .content {
transition:all 300ms ease-in-out;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
scale: 1;

}